home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-02-11 | 467 b | 27 lines |
- include ../Makefile.config
-
- CCFLAGS = $(OPT) $(COMPAT) $(GSYSTYPE) -I.
-
- OBJS = STRstring.o GDgopherdir.o GSgopherobj.o DAarray.o VIews.o BLblock.o \
- util.o compatible.o
-
- TARGET = libgopher.a
-
- all: $(TARGET)
-
- .c.o:
- $(CC) $(CCFLAGS) -c $<
-
-
- libgopher.a: $(OBJS)
- rm -f libgopher.a
- ar rcv libgopher.a $(OBJS)
- $(RANLIB) libgopher.a
-
- clean:
- rm -f $(TARGET) $(OBJS) *.out *~ core
-
- STRstring.o: STRstring.h
- GDgopherdir.o: GDgopherdir.h
- GSgopherobj.o: GSgopherobj.h
-